home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness: Dealing with Change / Workplace Effectiveness: Dealing with Change.iso / pc / Assess.Dxr / Internal_214_Change History code.ls < prev    next >
Encoding:
Text File  |  1998-04-24  |  4.6 KB  |  169 lines

  1. global gMasterData, gHistoryList, gQuestionNum, checkMarks1
  2.  
  3. on startHistory
  4.   go(label("History"))
  5.   setUserArea(gMasterData, #history1)
  6. end
  7.  
  8. on setUpHistory
  9.   stopSound2()
  10.   go("History1")
  11.   set gQuestionNum to 1
  12.   if voidp(gHistoryList) then
  13.     set gHistoryList to [#empty, #empty, #empty, #empty, #empty, #empty, #empty, #empty, #empty, #empty, #empty, #empty, #empty, #empty, #empty, #empty, #empty, #empty, #empty, #empty, #empty, #empty, #empty, #empty, #empty, #empty, #empty, #empty]
  14.   end if
  15.   showTheChoice()
  16.   goNarrator(gMasterData, "13")
  17.   setFingerCursor(#on, [5, 6, 7, 8])
  18.   puppetSprite(3, 1)
  19. end
  20.  
  21. on exitHistory1
  22.   setPuppetState([3, 5, 6, 7, 8], #n, 0)
  23.   setFingerCursor(#off, [5, 6, 7, 8])
  24. end
  25.  
  26. on exitHistory2
  27.   setPuppetState([5, 16], #c, 0)
  28.   if getaProp(checkMarks1, #history) = 0 then
  29.     setaProp(checkMarks1, #history, 1)
  30.   end if
  31. end
  32.  
  33. on goBackTo28
  34.   stopSound2()
  35.   go("History1")
  36.   setUserArea(gMasterData, #history1)
  37.   set gQuestionNum to 28
  38.   setPuppetState([3, 8], #n, 1)
  39.   set the member of sprite 3 to member ("question" && gQuestionNum)
  40.   set the member of sprite 8 to member "CH done"
  41.   showTheChoice()
  42.   setFingerCursor(#on, [5, 6, 7, 8])
  43. end
  44.  
  45. on historyChoice vTheseButtons, vThisChoice, vThisSprite
  46.   repeat with X in vTheseButtons
  47.     if X = vThisSprite then
  48.       nothing()
  49.       next repeat
  50.     end if
  51.     puppetSprite(X, 0)
  52.   end repeat
  53.   updateStage()
  54.   setAt(gHistoryList, gQuestionNum, vThisChoice)
  55. end
  56.  
  57. on nextQuestion
  58.   if gQuestionNum < 28 then
  59.     set gQuestionNum to gQuestionNum + 1
  60.     set the member of sprite 3 to member ("question" && gQuestionNum)
  61.     showTheChoice()
  62.     if gQuestionNum = 28 then
  63.       puppetSprite(8, 1)
  64.       set the member of sprite 8 to member "CH done"
  65.     end if
  66.     updateStage()
  67.   else
  68.     historyResults()
  69.   end if
  70. end
  71.  
  72. on prevQuestion
  73.   if gQuestionNum > 1 then
  74.     if gQuestionNum = 28 then
  75.       puppetSprite(8, 1)
  76.       set the member of sprite 8 to member "CH next"
  77.     end if
  78.     updateStage()
  79.     set gQuestionNum to gQuestionNum - 1
  80.     set the member of sprite 3 to member ("question" && gQuestionNum)
  81.     showTheChoice()
  82.   end if
  83. end
  84.  
  85. on showTheChoice
  86.   set vAnswer to getAt(gHistoryList, gQuestionNum)
  87.   setPuppetState([5, 7], #c, 0)
  88.   case vAnswer of
  89.     #Notwell:
  90.       puppetSprite(5, 1)
  91.       set the member of sprite 5 to member "notWell on"
  92.     #JustOK:
  93.       puppetSprite(6, 1)
  94.       set the member of sprite 6 to member "justOK on"
  95.     #Verywell:
  96.       puppetSprite(7, 1)
  97.       set the member of sprite 7 to member "veryWell on"
  98.   end case
  99.   updateStage()
  100. end
  101.  
  102. on historyResults
  103.   exitHistory1()
  104.   go("wink")
  105. end
  106.  
  107. on prepareGraph
  108.   go(marker(1))
  109.   setUserArea(gMasterData, #history2)
  110.   stopSound2()
  111.   DelaySome(30)
  112.   set the editable of member "CH field" to 1
  113.   updateStage()
  114.   set vAnswerKey to [#home: [1, 6, 9, 10, 13, 14, 15, 17, 19, 21], #work: [2, 5, 7, 8, 11, 12, 13, 20, 21, 22], #relations: [1, 3, 4, 6, 9, 11, 15, 20, 25, 28], #self: [1, 8, 9, 16, 18, 23, 24, 26, 27, 28]]
  115.   set vGraphResult to [#home: [0, 0, 0], #work: [0, 0, 0], #relations: [0, 0, 0], #self: [0, 0, 0]]
  116.   repeat with X = 1 to count(gHistoryList)
  117.     repeat with vProp in [#home, #work, #relations, #self]
  118.       if getOne(getProp(vAnswerKey, vProp), X) <> 0 then
  119.         case getAt(gHistoryList, X) of
  120.           #empty:
  121.             set vTester to 0
  122.           #Notwell:
  123.             set vTester to 1
  124.           #JustOK:
  125.             set vTester to 2
  126.           #Verywell:
  127.             set vTester to 3
  128.         end case
  129.         if vTester > 0 then
  130.           set vThisNum to getAt(getProp(vGraphResult, vProp), vTester)
  131.           set vThisNum to vThisNum + 1
  132.           setAt(getProp(vGraphResult, vProp), vTester, vThisNum)
  133.         end if
  134.       end if
  135.     end repeat
  136.   end repeat
  137.   showGraph(vGraphResult)
  138. end
  139.  
  140. on showGraph vGraphResult
  141.   global gMasterData
  142.   set vThisSprite to 5
  143.   set bottomV to 314
  144.   set topV to 124
  145.   set vNewNotch to (bottomV - topV) / 10
  146.   repeat with vProp in [#home, #work, #relations, #self]
  147.     repeat with vListPos = 1 to 3
  148.       set vAnswer to getAt(getProp(vGraphResult, vProp), vListPos)
  149.       if vAnswer > 0 then
  150.         set vEndPositionV to bottomV - (vAnswer * vNewNotch)
  151.         AnimateGraph(vThisSprite, vEndPositionV)
  152.       end if
  153.       set vThisSprite to vThisSprite + 1
  154.     end repeat
  155.   end repeat
  156.   goNarrator(gMasterData, "14")
  157. end
  158.  
  159. on AnimateGraph vThisSprite, vEndPositionV
  160.   set vStartLocH to the locH of sprite vThisSprite
  161.   set vNewLocV to the locV of sprite vThisSprite
  162.   puppetSprite(vThisSprite, 1)
  163.   repeat while vNewLocV >= vEndPositionV
  164.     set vNewLocV to vNewLocV - 2
  165.     set the loc of sprite vThisSprite to point(vStartLocH, vNewLocV)
  166.     updateStage()
  167.   end repeat
  168. end
  169.